MCP Task Manager Server_deleteTask
Remove one or more tasks from a specified project using project ID and task IDs. Deletes associated subtasks and dependency links. Returns the count of successfully deleted tasks.
Instructions
Deletes one or more tasks within a specified project. Requires the project ID and an array of task IDs to delete. Note: Deleting a task also deletes its subtasks and dependency links due to database cascade rules. Returns the count of successfully deleted tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The unique identifier (UUID) of the project containing the tasks to delete. This project must exist. | |
task_ids | Yes | An array of task IDs (UUIDs, 1-100) to be deleted from the specified project. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The unique identifier (UUID) of the project containing the tasks to delete. This project must exist.",
"format": "uuid",
"type": "string"
},
"task_ids": {
"description": "An array of task IDs (UUIDs, 1-100) to be deleted from the specified project.",
"items": {
"description": "A unique identifier (UUID) of a task to delete.",
"format": "uuid",
"type": "string"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
}
},
"required": [
"project_id",
"task_ids"
],
"type": "object"
}